home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games 1996 July / Amiga Games 1996 #7.iso / archive / userbox / publicdomain / chunker.lha / Chunker / source / makefile < prev    next >
Makefile  |  1996-04-01  |  484b  |  32 lines

  1. #
  2. # Unix Makefile for chunker
  3. #
  4. #
  5.  
  6. #CC = CC
  7. CC = gcc
  8. OPTIMISE = -O2
  9.  
  10. all: dechunk chunker
  11.  
  12. chunker: chunker.o machine.o bfn.o
  13.     $(CC) $(OPTIMISE) -o $@ chunker.o machine.o bfn.o
  14.  
  15. dechunk: dechunk.o machine.o bfn.o
  16.     $(CC) $(OPTIMISE) -o $@ dechunk.o machine.o bfn.o
  17.  
  18. machine.o: machine.c
  19.     $(CC) $(OPTIMISE) -c machine.c
  20.  
  21. bfn.o: bfn.c
  22.     $(CC) $(OPTIMISE) -c bfn.c
  23.  
  24. chunker.o: chunker.c
  25.     $(CC) $(OPTIMISE) -c chunker.c
  26.  
  27. dechunk.o: dechunk.c
  28.     $(CC) $(OPTIMISE) -c dechunk.c
  29.  
  30. clean:
  31.     rm *.o
  32.